home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 December / PCWorld_2005-12_cd.bin / software / vyzkuste / pspad / pspad433inst_cz.exe / {app} / Context / Java.DEF < prev    next >
Text File  |  2004-04-13  |  2KB  |  67 lines

  1. ; PSPad code template for Java
  2. ; Created by PSPad   14.7.2002
  3. ; Author:  Fiala  pspad@wo.cz
  4. ;-------------------------------------------------------------------------------
  5. [import | Import balφku]
  6. import java.|.*;
  7. ;-------------------------------------------------------------------------------
  8. [class main | Java program - zßklad]
  9. class | {
  10.  
  11.   () {
  12.  
  13.   }
  14.  
  15.   public static void main(String[] args) {
  16.  
  17.   }
  18. }
  19. ;-------------------------------------------------------------------------------
  20. [println | System.out.println]
  21. System.out.println("|");
  22. ;-------------------------------------------------------------------------------
  23. [for | for cyklus]
  24. for(int i=0; i<|; i++) {}
  25. ;-------------------------------------------------------------------------------
  26. [iterator | pr∙chod kolekce iterßtorem]
  27. for(Iterator it = |.iterator(); it.hasNext();) {
  28.   () it.next()
  29. }
  30. ;-------------------------------------------------------------------------------
  31. [while | while cyklus]
  32. while(|) {}
  33. ;-------------------------------------------------------------------------------
  34. [do-while | do-while cyklus]
  35. do {
  36.   |
  37. } while();
  38. ;-------------------------------------------------------------------------------
  39. [if-else | ·pln² podmi≥ujφcφ p°φkaz]
  40. if(|) {
  41.  
  42. }
  43. else {}
  44. ;-------------------------------------------------------------------------------
  45. [() ? : | ternßrnφ operßtor]
  46. (|) ? :
  47. ;-------------------------------------------------------------------------------
  48. [switch | p°epφnaΦ]
  49. switch(|) {
  50.   case  :
  51.     ;
  52.     break;
  53.   default  :
  54.     ;
  55. }
  56. ;-------------------------------------------------------------------------------
  57. [try | try-catch blok]
  58. try {
  59.   |
  60. }
  61. catch(Exception exc) {
  62.   System.out.println("Unexpected exception");
  63.   exc.printStackTrace();
  64. }
  65. finally {}
  66. ;-------------------------------------------------------------------------------
  67.